Add versioned object_store feature flags - #10454
Open
tustvold wants to merge 1 commit into
Open
Conversation
tustvold
commented
Jul 28, 2026
| # Enable the store implementations used by tests, doctests and benchmarks for every | ||
| # supported object_store version. Only the version selected by the enabled feature flag is | ||
| # used, tests access it via the `parquet::object_store` re-export rather than by name | ||
| object_store_0_13 = { package = "object_store", version = "0.13.2", features = ["azure", "fs"] } |
Contributor
Author
There was a problem hiding this comment.
We need to keep these so that we get the feature flags, it is a bit meh having the tests depend on two versions of object_store though...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
Rationale for this change
Makes it possible to use newer versions of object_store without breaking changes
What changes are included in this PR?
Adds a new object_store_0_14 feature flag that enables object_store 0.14
Are these changes tested?
Are there any user-facing changes?